| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | /* |
||
| 23 | app.factory('LabelService', function(ApiService, $http, $q){ |
||
| 24 | var LabelService = function($http, ep, $q) { |
||
| 25 | ApiService.call(this, $http, ep, $q); |
||
| 26 | }; |
||
| 27 | LabelService.prototype = angular.copy(ApiService.prototype); |
||
| 28 | service = new LabelService($http, 'labels', $q); |
||
|
|
|||
| 29 | return service; |
||
| 30 | }); |